home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.plaf.basic;
-
- import java.awt.event.ActionEvent;
-
- class BasicTabbedPaneUI$PageUpAction extends BasicTabbedPaneUI.KeyAction {
- // $FF: synthetic field
- private final BasicTabbedPaneUI this$0;
-
- BasicTabbedPaneUI$PageUpAction(BasicTabbedPaneUI var1) {
- super(var1);
- this.this$0 = var1;
- }
-
- public void actionPerformed(ActionEvent var1) {
- int var2 = this.this$0.tabPane.getTabPlacement();
- if (var2 != 1 && var2 != 3) {
- this.this$0.navigateSelectedTab(1);
- } else {
- this.this$0.navigateSelectedTab(7);
- }
-
- }
- }
-